861ac185a6
```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 ```
29 lines
837 B
Bash
29 lines
837 B
Bash
# Template file for 'libatasmart'
|
|
pkgname=libatasmart
|
|
version=0.19
|
|
revision=5
|
|
build_style=gnu-configure
|
|
configure_args="--sbindir=/usr/bin --disable-static"
|
|
hostmakedepends="automake libtool pkg-config"
|
|
makedepends="eudev-libudev-devel"
|
|
short_desc="ATA S.M.A.R.T. Reading and Parsing Library"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="LGPL-2.1-or-later"
|
|
homepage="http://0pointer.de/blog/projects/being-smart.html"
|
|
distfiles="http://0pointer.de/public/$pkgname-$version.tar.xz"
|
|
checksum=61f0ea345f63d28ab2ff0dc352c22271661b66bf09642db3a4049ac9dbdb0f8d
|
|
|
|
pre_configure() {
|
|
autoreconf -fi
|
|
}
|
|
|
|
libatasmart-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/lib/*.so
|
|
vmove usr/share
|
|
}
|
|
}
|