mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
22 lines
706 B
Bash
22 lines
706 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Daniel J Griffiths <griffithsdj@archlinux.us>
|
|
# Maintainer: Anders Bergh <anders1@gmail.com>
|
|
# Contributor: Mildred <silkensedai@online.fr>
|
|
|
|
pkgname=premake
|
|
pkgver=3.7
|
|
pkgrel=1
|
|
pkgdesc="A build configuration tool. Describe your build using Lua and generate \
|
|
the project files for your specific toolset."
|
|
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 || return 1
|
|
install -Dm755 bin/premake "$pkgdir/usr/bin/premake"
|
|
}
|