Package Details: debsigs-git r96.05c081a-1

Git Clone URL: https://aur.archlinux.org/debsigs-git.git (read-only, click to copy)
Package Base: debsigs-git
Description: toolset for cryptographically signing Debian packages
Upstream URL: https://gitlab.com/debsigs/debsigs
Licenses: GPL
Conflicts: debsigs
Provides: debsigs
Submitter: bok
Maintainer: chrishamm
Last Packager: chrishamm
Votes: 1
Popularity: 0.000000
First Submitted: 2016-01-21 14:40 (UTC)
Last Updated: 2019-07-30 10:40 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

KarlofDuty commented on 2025-04-23 18:29 (UTC)

It seems the build is broken because the perl source has been moved into a subdirectory in the git repo so the makefile can't be found when building.

Using the following in the pkgbuild works for me:

build() {
    cd "$srcdir/${pkgname%-git}/perl"
    perl Makefile.PL
    make
}

package() {
    cd "$srcdir/${pkgname%-git}/perl"
    make DESTDIR="$pkgdir/" install
}