iglunix/extra/pcre/build.sh

33 lines
421 B
Bash
Raw Permalink Normal View History

2021-12-26 12:40:14 +00:00
pkgname=pcre
pkgver=8.45
2021-09-11 08:24:20 +00:00
fetch() {
2021-12-26 12:40:14 +00:00
curl "https://ftp.pcre.org/pub/pcre/pcre-$pkgver.tar.gz" -o $pkgname-$pkgver.tar.gz
tar -xf $pkgname-$pkgver.tar.gz
2021-09-11 08:24:20 +00:00
}
build() {
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
--build=$TRIPLE \
--host=$TRIPLE
make
}
package() {
cd $pkgname-$pkgver
make install DESTDIR=$pkgdir
}
2021-12-26 12:40:14 +00:00
backup() {
return
}
2021-09-11 08:24:20 +00:00
license() {
cd $pkgname-$pkgver
cat LICENSE
# cat COPYING
}