blob: b90ae779b323c73e647f332b8268cd7ffcf7ebd9 (
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
27
28
29
30
31
32
33
34
35
36
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=ewemake
_srcpkgname='Make'
pkgver=1.2.3
pkgrel=1
pkgdesc="somewhat more powerfull alternative to 'make'"
arch=('x86_64' 'i686')
url="https://git.eckner.net/Erich/Make"
license=('GPL')
groups=()
depends=('bash' 'gmp')
makedepends=('fpc' 'fpc-src-ewetools')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
options=()
source=(
"https://git.eckner.net/Erich/${_srcpkgname}/snapshot/${_srcpkgname}-${pkgver}.tar.xz"
)
sha512sums=('a95f4317ee13733721c82219f7bb7671a969710703b1b11b36a112d3f9467a50bea88ea7fe8f2802389dbd4dfb6a22a227ac237491389a93751a9bd302fba29f')
build() {
cd ${_srcpkgname}-${pkgver}
make
}
package() {
cd ${_srcpkgname}-${pkgver}
make DESTDIR=$pkgdir install
}
|