added anthy
This commit is contained in:
parent
dac0e1a5e5
commit
7ce3e44f46
1 changed files with 28 additions and 0 deletions
28
pkgs/anthy/build.sh
Normal file
28
pkgs/anthy/build.sh
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
pkgname=anthy
|
||||||
|
pkgver=9100h
|
||||||
|
|
||||||
|
fetch() {
|
||||||
|
curl -L "https://ftp.halifax.rwth-aachen.de/osdn/anthy/37536/anthy-$pkgver.tar.gz" -o $pkgname-$pkgver.tar.xz
|
||||||
|
tar -xf $pkgname-$pkgver.tar.xz
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--build=$(echo $TRIPLE | sed 's/musl/gnu/g') \
|
||||||
|
--host=$(echo $TRIPLE | sed 's/musl/gnu/g')
|
||||||
|
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
make install DESTDIR=$pkgdir
|
||||||
|
}
|
||||||
|
|
||||||
|
license() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
cat LICENSE
|
||||||
|
# cat COPYING
|
||||||
|
}
|
Loading…
Reference in a new issue