iglunix/old/wld/build.sh

24 lines
409 B
Bash
Raw Permalink Normal View History

2021-04-02 15:14:25 +00:00
pkgname=wld
pkgver=master
2021-04-12 15:54:20 +00:00
deps="fontconfig"
2021-04-02 15:14:25 +00:00
fetch() {
curl -L "https://github.com/michaelforney/wld/archive/refs/heads/master.tar.gz" -o $pkgname-$pkgver.tar.xz
tar -xf $pkgname-$pkgver.tar.xz
}
build() {
cd $pkgname-$pkgver
bad --gmake gmake PREFIX=/usr CC=cc
2021-04-02 15:14:25 +00:00
}
package() {
cd $pkgname-$pkgver
bad --gmake gmake install DESTDIR=$pkgdir PREFIX=/usr
2021-04-02 15:14:25 +00:00
}
license() {
cd $pkgname-$pkgver
cat COPYING
}