diff options
author | kusakata | 2017-12-22 00:47:00 +0900 |
---|---|---|
committer | kusakata | 2017-12-22 00:47:00 +0900 |
commit | 303fd128f4e7fae400058286cdec715d05f9f794 (patch) | |
tree | 837ebf61f459d5a09f6324617fa4af08036b866b /PKGBUILD | |
download | aur-303fd128f4e7fae400058286cdec715d05f9f794.tar.gz |
ported to aur4
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..65c6268df04c --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,37 @@ +# Maintainer: kusakata <shohei atmark kusakata period com> +# Contributor: jperry <sh.jperry@gmail.com> +# use versionpkg + +pkgname=gworkspace +pkgver=0.9.4 +pkgrel=1 +pkgdesc="The GNUstep Workspace" +arch=("x86_64") +url="http://www.gnustep.org/experience/GWorkspace.html" +license=('GPL') +depends=(gnustep-base gnustep-gui gnustep-back) +makedepends=(gcc-objc) +provides=(gworkspace) +conflicts=(gworkspace) +replaces=(gworkspace.app-svn) +backup=() +install= +source=(ftp://ftp.gnustep.org/pub/gnustep/usr-apps/$pkgname-$pkgver.tar.gz) +noextract=() +md5sums=('406256f470781bc3be2670611276780f') + + +build() { + cd $srcdir/$pkgname-$pkgver + # necessary to set environment if not in user startup. + . /usr/share/GNUstep/Makefiles/GNUstep.sh + ./configure --prefix=/opt/GNUstep + make || return 1 +} + +package() { + cd "${srcdir}/$pkgname-$pkgver" + . /usr/share/GNUstep/Makefiles/GNUstep.sh + make DESTDIR=$pkgdir install || return 1 +} + |