Package Details: dh-exec 0.23-2

Git Clone URL: https://aur.archlinux.org/dh-exec.git (read-only, click to copy)
Package Base: dh-exec
Description: Debhelper executable file substition helpers
Upstream URL: https://github.com/algernon/dh-exec
Licenses: GPL3
Submitter: wget
Maintainer: wget
Last Packager: wget
Votes: 2
Popularity: 0.000000
First Submitted: 2018-07-30 12:33 (UTC)
Last Updated: 2022-07-18 14:59 (UTC)

Latest Comments

Excalibur commented on 2023-09-27 09:39 (UTC)

This version no longer installs on my system. Here is an updated PKGBUILD:

# Maintainer: William Gathoye <william + aur at gathoye dot be>

pkgname=dh-exec
pkgver=0.27
pkgrel=1
pkgdesc='Debhelper executable file substition helpers'
arch=('i686' 'x86_64' 'arm' 'armv6h' 'armv7h' 'aarch64')
url="https://salsa.debian.org/debian/${pkgname}"
license=('GPL3')

makedepends=('autoconf')
optdepends=(
)
source=(
    "https://salsa.debian.org/debian/${pkgname}/-/archive/${pkgname}-${pkgver}/${pkgname}-${pkgname}-${pkgver}.tar.gz"
)
sha512sums=(
    '105befe8452a761e104efc6fa491b5b2c0ddd3f4310243fd991dfd4410a1213965002da380ad7d21e9dcb6779148a3a4514827d78c8b4fa94d05b1e23c8f30db'
)

build() {
    cd "${pkgname}-${pkgname}-${pkgver}"
    autoreconf --install
    ./configure --prefix=/usr --libexecdir=/usr/lib
    make
}

package() {
    cd "${pkgname}-${pkgname}-${pkgver}"
    make install DESTDIR="${pkgdir}"
}