mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-05 20:36:40 +02:00
testing/patchutils: new aport
A collection of programs for manipulating patch files http://cyberelk.net/tim/patchutils/
This commit is contained in:
parent
71ee601fcc
commit
a5ebc4e938
45
testing/patchutils/APKBUILD
Normal file
45
testing/patchutils/APKBUILD
Normal file
@ -0,0 +1,45 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=patchutils
|
||||
pkgver=0.3.2
|
||||
pkgrel=0
|
||||
pkgdesc="A collection of programs for manipulating patch files"
|
||||
url="http://cyberelk.net/tim/patchutils/"
|
||||
arch="all"
|
||||
license="GPLv2+"
|
||||
depends=""
|
||||
depends_dev=""
|
||||
makedepends="$depends_dev"
|
||||
install=""
|
||||
subpackages="$pkgname-doc"
|
||||
source="http://cyberelk.net/tim/data/patchutils/stable/patchutils-$pkgver.tar.bz2"
|
||||
|
||||
_builddir="$srcdir"/patchutils-$pkgver
|
||||
prepare() {
|
||||
local i
|
||||
cd "$_builddir"
|
||||
for i in $source; do
|
||||
case $i in
|
||||
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
||||
esac
|
||||
done
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$_builddir"
|
||||
./configure --prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--mandir=/usr/share/man \
|
||||
--infodir=/usr/share/info \
|
||||
--localstatedir=/var \
|
||||
|| return 1
|
||||
make || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_builddir"
|
||||
make DESTDIR="$pkgdir" install || return 1
|
||||
rm -f "$pkgdir"/usr/lib/*.la
|
||||
}
|
||||
|
||||
md5sums="74607b4a28c9009c6aeeed0e91098917 patchutils-0.3.2.tar.bz2"
|
||||
Loading…
x
Reference in New Issue
Block a user