Skip to content

Commit

Permalink
Another PKGBUILD update for Arch
Browse files Browse the repository at this point in the history
  • Loading branch information
codereader committed Dec 28, 2016
1 parent f987860 commit b380adc
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions PKGBUILD
@@ -1,32 +1,28 @@
# Maintainer: codereader <greebo[AT]angua[DOT]at>
pkgname=darkradiant
pkgver=2.1.1
pkgver=2.1.0
pkgrel=1
epoch=
pkgdesc="Level Editor for Doom 3 (idTech4) and The Dark Mod"
arch=("x86_64")
url="http://darkradiant.sourceforge.net/"
license=('GPL')
depends=("wxgtk>=3.0.0", "ftgl>=2.0.0", "glew>=1.0.0", "boost-libs>=1.46.1", "freealut>=1.0.0", "libvorbis>=1.3.0", "python>=3.5.0", "libsigc++>=2.0.0")
makedepends=("git>=2.0.0", "automake>=1.14", "libtool>=2.4.0", "gcc>=6.0.0", "boost>=1.46.1", "webkitgtk2>=2.4.0")
install=
changelog=
source=("$pkgname-$pkgver::git+https://github.com/codereader/DarkRadiant.git")
license=("GPL")
depends=(wxgtk ftgl glew boost-libs freealut libvorbis python libsigc++)
makedepends=(git boost webkitgtk2)
source=("$pkgname::git+https://github.com/codereader/DarkRadiant.git#branch=2.1.0arch")
md5sums=("SKIP")

build() {
cd "$pkgname-$pkgver"
./autogen.sh
cd "$pkgname"
./configure --prefix=/usr --enable-darkmod-plugins
make --jobs=4
make
}

check() {
cd "$pkgname-$pkgver"
cd "$pkgname"
make -k check
}

package() {
cd "$pkgname-$pkgver"
cd "$pkgname"
make DESTDIR="$pkgdir/" install
}

0 comments on commit b380adc

Please sign in to comment.