summaryrefslogtreecommitdiff
path: root/pcr/deutex-devel-git
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2018-01-15 10:51:43 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2018-01-15 10:51:43 -0500
commit93d8353f353ea06c73a8fa8281d8cddbad2c74b0 (patch)
tree320648d36b77d4035901d7a057794ff14b43141e /pcr/deutex-devel-git
parent6e7cabc65d64eab33bcef40d86833792cbe71430 (diff)
downloadabslibre-93d8353f353ea06c73a8fa8281d8cddbad2c74b0.tar.gz
abslibre-93d8353f353ea06c73a8fa8281d8cddbad2c74b0.tar.bz2
abslibre-93d8353f353ea06c73a8fa8281d8cddbad2c74b0.zip
deutex-5.1.1-1: updating version
Diffstat (limited to 'pcr/deutex-devel-git')
-rw-r--r--pcr/deutex-devel-git/PKGBUILD42
1 files changed, 0 insertions, 42 deletions
diff --git a/pcr/deutex-devel-git/PKGBUILD b/pcr/deutex-devel-git/PKGBUILD
deleted file mode 100644
index 4693d2fcd..000000000
--- a/pcr/deutex-devel-git/PKGBUILD
+++ /dev/null
@@ -1,42 +0,0 @@
-# Maintainer (Arch): Frederic Bezies <fredbezies at gmail dot com>
-# Contributor (Arch): DavidK <david_king at softhome dot net>
-# Contributor (Arch): Arkham <arkham at archlinux dot us>
-# Contributor (Arch): Christoph Zeiler <rabyte*gmail>
-
-pkgname=deutex-devel-git
-pkgver=4.4.902.r15.g1627a78
-pkgrel=1
-pkgdesc="Composition tool for doom-style WAD files"
-arch=('i686' 'x86_64')
-url="http://www.teaser.fr/~amajorel/deutex/"
-license=('custom')
-depends=('glibc')
-makedepends=('git')
-provides=('deutex')
-conflicts=('deutex')
-source=(git+https://github.com/Doom-Utils/deutex.git)
-md5sums=('SKIP')
-
-pkgver() {
- cd "$srcdir/deutex"
- git describe | sed -r 's/^v//;s/([^-]*-g)/r\1/;s/-/./g'
-}
-
-build() {
- # Configure
- cd "$srcdir/deutex"
- ./configure
-
- # Compile and install
- make
-}
-
-package() {
- cd "$srcdir/deutex"
- install -d "$pkgdir/usr/bin"
- install -d "$pkgdir/usr/share/man/man6"
- make BINDIR="$pkgdir/usr/bin" \
- MANDIR="$pkgdir/usr/share/man" install
- # Install license
- install -Dm 644 LICENCE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}