added reflex

This commit is contained in:
Ella-0 2021-06-19 12:36:03 +01:00
parent 9dc682bee3
commit ba57a8f982

27
pkgs/reflex/build.sh Normal file
View file

@ -0,0 +1,27 @@
pkgname=reflex
pkgver=20210510
fetch() {
curl "https://invisible-island.net/datafiles/release/reflex.tar.gz" -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
}
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
--build=$TRIPLE \
--host=$TRIPLE
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
}
license() {
cd $pkgname-$pkgver
cat COPYING
}