added reflex
This commit is contained in:
parent
9dc682bee3
commit
ba57a8f982
1 changed files with 27 additions and 0 deletions
27
pkgs/reflex/build.sh
Normal file
27
pkgs/reflex/build.sh
Normal 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
|
||||
}
|
Loading…
Reference in a new issue