blob: 6513040657500df728ca43abe6b785e24411abee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# $Id$
# Maintainer: Erich Eckner <arch at eckner dot net>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgname=devtools32
pkgver=20171108
pkgrel=1
pkgdesc='Tools for Arch Linux package maintainers, also for 32 bit'
arch=('any')
license=('GPL')
url='https://github.com/archlinux32/devtools32/'
depends=('namcap' 'openssh' 'subversion' 'rsync' 'arch-install-scripts'
'pacman-mirrorlist32' 'git' 'mercurial' 'bzr')
conflicts=('devtools')
source=("$pkgname-$pkgver.tar.gz::https://github.com/archlinux32/$pkgname/archive/v$pkgver.tar.gz")
sha512sums=('d15f3152169a5e2bf2694726bc556e403b1c09c4ca5b0bcda2c624902eac8575318579291a876376716aec4c13c6846cb5c867fbe4e3fc1f25c1a4ae3eb3df8d')
build() {
cd "${pkgname}-${pkgver}"
make PREFIX=/usr
}
package() {
cd "${pkgname}-${pkgver}"
make PREFIX=/usr DESTDIR=${pkgdir} install
}
|