Add custom devtools with own adjustments and ALARM patches

This commit is contained in:
Martchus 2019-04-16 17:57:19 +02:00
parent d3300e67a1
commit 7aeba17dcb
1 changed files with 34 additions and 0 deletions

34
devtools/custom/PKGBUILD Normal file
View File

@ -0,0 +1,34 @@
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - patches to fix issues with how we use the tools
# "custom": Martchus <martchus@gmx.net>
# - 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
}