diff options
author | Niels Horn <niels.horn@gmail.com> | 2013-04-23 20:48:10 -0400 |
---|---|---|
committer | Niels Horn <niels.horn@slackbuilds.org> | 2013-04-28 12:29:36 -0300 |
commit | 4d65d45e6329cb7a600777d1b2c51e42543f5d9e (patch) | |
tree | eaefe8181fad13a2f0f9f5dfd5d23ce1557b6d02 /system/gcdemu/gcdemu.SlackBuild | |
parent | 0f644ea95a0b3b8da0ca44f7ce488f1edd7f0071 (diff) |
system/gcdemu: Updated for version 2.0.0.
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'system/gcdemu/gcdemu.SlackBuild')
-rw-r--r-- | system/gcdemu/gcdemu.SlackBuild | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/system/gcdemu/gcdemu.SlackBuild b/system/gcdemu/gcdemu.SlackBuild index bf48e827b4cf..1875b81b1b46 100644 --- a/system/gcdemu/gcdemu.SlackBuild +++ b/system/gcdemu/gcdemu.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for gcdemu # -# Copyright 2012 Niels Horn, Rio de Janeiro, RJ, Brazil +# Copyright 2013 Niels Horn, Rio de Janeiro, RJ, Brazil # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,10 +22,10 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -# Revision date: 2012/09/15 +# Revision date: 2013/03/31 PRGNAM=gcdemu -VERSION=${VERSION:-1.5.0} +VERSION=${VERSION:-2.0.0} ARCH=noarch BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -46,15 +46,19 @@ cd $PRGNAM-$VERSION chown -R root:root . chmod -R a-s,u+rw,go+r-w . -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux +mkdir -p build +cd build + cmake \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_MANDIR=/usr/man \ + -DCMAKE_BUILD_TYPE=Release .. + make VERBOSE=1 + make install DESTDIR=$PKG +cd .. -make -make install-strip DESTDIR=$PKG +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp AUTHORS ChangeLog COPYING INSTALL NEWS README \ |