void-packages/srcpkgs/libabigail/template
Đoàn Trần Công Danh 861ac185a6 srcpkgs/l*: convert patches to -Np1
```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

49 lines
1.3 KiB
Bash

# Template file for 'libabigail'
pkgname=libabigail
version=1.8.2
revision=1
build_style=gnu-configure
configure_args="--enable-cxx11=yes"
hostmakedepends="automake cpio dpkg libtool pkg-config python3-Sphinx texinfo"
makedepends="elfutils-devel libxml2-devel"
short_desc="ABI Generic Analysis and Instrumentation Library"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="LGPL-3.0-or-later"
homepage="https://www.sourceware.org/libabigail/"
distfiles="http://mirrors.kernel.org/sourceware/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=86347c9f0a8666f263fd63f8c3fe4c4f9cb1bdb3ec4260ecbaf117d137e89787
case "$XBPS_TARGET_MACHINE" in
*-musl) makedepends+=" musl-fts-devel"; LDFLAGS="-lfts" ;;
esac
pre_configure() {
libtoolize -f
autoreconf -fi
}
post_build() {
make -C doc/manuals man info
}
post_install() {
make -C doc/manuals install-man-and-info-doc DESTDIR="$DESTDIR"
}
libabigail-devel_package() {
short_desc+=" - development files"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/*.so
vmove usr/lib/*.a
vmove usr/lib/pkgconfig
vmove usr/share/aclocal
}
}
libabigail-tools_package() {
short_desc+=" - tools"
depends="${sourcepkg}>=${version}_${revision}"
pkg_install() {
vmove usr/bin
vmove usr/share/man
vmove usr/share/info
}
}