summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ea611a6e74465489fc50e45a5f8a3338fa0a2b6f (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
# Contributor: Pablo Nicolas Diaz <pablonicolas.diaz at gmail.com>
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>

pkgname=dmake
pkgver=4.12.2.2
_pkgver=4_12_2_2
pkgrel=1
pkgdesc="A make utility similar to GNU make or the Workshop dmake, formerly used by the OpenOffice.org build system."
arch=('i686' 'x86_64')
license=('GPL')
url="https://github.com/mohawk2/dmake.git"
depends=('glibc')
source=("https://github.com/mohawk2/dmake/archive/DMAKE_${_pkgver}.tar.gz")
md5sums=('75cfc7b7e8bafe12e7b4c5ca13505607')

build() {
  cd ${pkgname}-DMAKE_${_pkgver}
  ./configure  --prefix=/usr --enable-spawn 
  make
}

package() {
  cd ${pkgname}-DMAKE_${_pkgver}
  make DESTDIR=${pkgdir} install
}