mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-11-03 01:42:03 +01:00
A collection of programs for manipulating patch files http://cyberelk.net/tim/patchutils/
46 lines
1013 B
Plaintext
46 lines
1013 B
Plaintext
# 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"
|