Added OpenBSD m4
This commit is contained in:
parent
8efed850a6
commit
01440ede69
1 changed files with 36 additions and 0 deletions
36
pkgs/om4/build.sh
Normal file
36
pkgs/om4/build.sh
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
pkgver=6.7
|
||||||
|
pkgname=om4
|
||||||
|
pkgrel=1
|
||||||
|
bad=""
|
||||||
|
ext="doc"
|
||||||
|
|
||||||
|
fetch() {
|
||||||
|
curl -L "https://github.com/ibara/m4/releases/download/om4-6.7/om4-6.7.tar.gz" -o $pkgname-$pkgver.tar.xz
|
||||||
|
tar -xf $pkgname-$pkgver.tar.xz
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
./configure --prefix=/
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
install -d $pkgdir/bin
|
||||||
|
install -Dm4755 om4 $pkgdir/bin
|
||||||
|
cd $pkgdir/bin
|
||||||
|
ln -s om4 m4
|
||||||
|
}
|
||||||
|
|
||||||
|
package_doc() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
install -d $pkgdir/share/man/
|
||||||
|
install -d $pkgdir/share/man/man1
|
||||||
|
install -Dm644 m4.1 $pkgdir/share/man/man1
|
||||||
|
}
|
||||||
|
|
||||||
|
license() {
|
||||||
|
cd $pkgname-$pkgver
|
||||||
|
echo "Source are a combination of BSD and ISC licensed files"
|
||||||
|
}
|
Loading…
Reference in a new issue