diff --git a/devtools/custom/PKGBUILD b/devtools/custom/PKGBUILD new file mode 100644 index 00000000..56884f22 --- /dev/null +++ b/devtools/custom/PKGBUILD @@ -0,0 +1,34 @@ +# Maintainer: Pierre Schmitz + +# ALARM: Kevin Mihelich +# - patches to fix issues with how we use the tools + +# "custom": Martchus +# - patches to fix issues with how I use the tools + +pkgname=devtools-custom +_pkgname=devtools +pkgver=20190416 +pkgrel=1 +pkgdesc='Tools for Arch Linux package maintainers (patches from ALARM and custom ones)' +arch=('any') +license=('GPL') +url='https://martchus.no-ip.biz/gitea/Martchus/devtools/src/branch/custom' +conflicts=('devtools' 'devtools-alarm') +provides=('devtools' 'devtools-alarm') +depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts' + 'git' 'bzr' 'mercurial' 'diffutils') +makedepends=('asciidoc') +optdepends=('btrfs-progs: btrfs support') +source=("git+https://martchus.no-ip.biz/gitea/Martchus/$_pkgname.git#branch=custom-$pkgver") +md5sums=('SKIP') + +build() { + cd "$srcdir/${_pkgname}" + make PREFIX=/usr +} + +package() { + cd "$srcdir/${_pkgname}" + make PREFIX=/usr DESTDIR="${pkgdir}" install +}