This commit is contained in:
xiota
2023-12-21 00:47:46 -08:00
parent f52d5fe704
commit 14437aa782
2 changed files with 23 additions and 21 deletions

View File

@@ -1,28 +1,28 @@
pkgbase = debhelper pkgbase = debhelper
pkgdesc = A collection of programs that can be used in a debian/rules file to automate common tasks pkgdesc = A collection of programs that can be used in a debian/rules file to automate common tasks
pkgver = 13.11.8 pkgver = 13.11.9
pkgrel = 1 pkgrel = 1
url = https://salsa.debian.org/debian/debhelper url = https://salsa.debian.org/debian/debhelper
arch = any arch = any
license = GPL2 license = GPL2
license = GPL3 license = GPL3
makedepends = file
makedepends = git makedepends = git
makedepends = po4a makedepends = po4a
depends = binutils
depends = dpkg
depends = file
depends = html2text
depends = man-db
depends = perl-pod-parser depends = perl-pod-parser
depends = strip-nondeterminism
depends = po-debconf
optdepends = dh-make: convert source archives into Debian package source optdepends = dh-make: convert source archives into Debian package source
provides = dh-strip-nondeterminism provides = dh-strip-nondeterminism
conflicts = dh-strip-nondeterminism conflicts = dh-strip-nondeterminism
source = git+https://salsa.debian.org/debian/debhelper.git#tag=debian/13.11.8 source = git+https://salsa.debian.org/debian/debhelper.git#tag=debian/13.11.9
source = dh_strip_nondeterminism::https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/raw/master/bin/dh_strip_nondeterminism?inline=false source = dh_strip_nondeterminism::https://salsa.debian.org/reproducible-builds/strip-nondeterminism/-/raw/master/bin/dh_strip_nondeterminism?inline=false
sha256sums = SKIP sha256sums = SKIP
sha256sums = SKIP sha256sums = SKIP
pkgname = debhelper pkgname = debhelper
depends = perl-pod-parser
depends = binutils
depends = dpkg
depends = file
depends = html2text
depends = man-db
depends = strip-nondeterminism
depends = po-debconf

View File

@@ -6,7 +6,7 @@
_pkgname="debhelper" _pkgname="debhelper"
pkgname="$_pkgname" pkgname="$_pkgname"
pkgver=13.11.8 pkgver=13.11.9
pkgrel=1 pkgrel=1
pkgdesc="A collection of programs that can be used in a debian/rules file to automate common tasks" pkgdesc="A collection of programs that can be used in a debian/rules file to automate common tasks"
url="https://salsa.debian.org/debian/debhelper" url="https://salsa.debian.org/debian/debhelper"
@@ -16,19 +16,9 @@ arch=('any')
_url_dh_strip_nondeterminism="https://salsa.debian.org/reproducible-builds/strip-nondeterminism" _url_dh_strip_nondeterminism="https://salsa.debian.org/reproducible-builds/strip-nondeterminism"
depends=( depends=(
'binutils'
'dpkg'
'file'
'html2text'
'man-db'
'perl-pod-parser' 'perl-pod-parser'
'strip-nondeterminism'
# AUR
'po-debconf'
) )
makedepends=( makedepends=(
'file'
'git' 'git'
'po4a' 'po4a'
) )
@@ -72,6 +62,18 @@ build() {
} }
package() { package() {
depends+=(
'binutils'
'dpkg'
'file'
'html2text'
'man-db'
'strip-nondeterminism'
# AUR
'po-debconf'
)
cd "$_pkgsrc" cd "$_pkgsrc"
make DESTDIR="${pkgdir:?}" install make DESTDIR="${pkgdir:?}" install
install -Dm755 "${srcdir:?}/dh_strip_nondeterminism" -t "${pkgdir:?}/usr/bin" install -Dm755 "${srcdir:?}/dh_strip_nondeterminism" -t "${pkgdir:?}/usr/bin"