blob: 871594a038dafab075c68580fd1f2ee34ca6527f (
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
|
# $Id: PKGBUILD 115016 2014-07-05 04:00:42Z fyan $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Anders Bergh <anders1@gmail.com>
# Contributor: Mildred <silkensedai@online.fr>
# Contributor: Daniel J Griffiths <griffithsdj@archlinux.us>
pkgname=premake3
pkgver=3.7
pkgrel=3
pkgdesc="A simple build configuration and project generation tool using lua"
arch=('i686' 'x86_64')
url="http://premake.sourceforge.net"
license=('GPL')
makedepends=()
source=("http://downloads.sourceforge.net/sourceforge/premake/premake-src-${pkgver}.zip")
md5sums=('8d30dc5bbc52aad81abb1509c1dd7d8f')
build() {
cd ${srcdir}/Premake-${pkgver}
make
}
package() {
cd ${srcdir}/Premake-${pkgver}
install -Dm755 bin/premake ${pkgdir}/usr/bin/premake
}
|