diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/freehdl | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/freehdl')
-rw-r--r-- | community/freehdl/PKGBUILD | 30 | ||||
-rw-r--r-- | community/freehdl/freehdl.install | 20 |
2 files changed, 0 insertions, 50 deletions
diff --git a/community/freehdl/PKGBUILD b/community/freehdl/PKGBUILD deleted file mode 100644 index 02bd0aad6..000000000 --- a/community/freehdl/PKGBUILD +++ /dev/null @@ -1,30 +0,0 @@ -# $Id: PKGBUILD 82362 2013-01-16 10:08:50Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Neil Darlow <neil@darlow.co.uk> -# Contributor: Jens Maucher <defcon@archlinux.us> - -pkgname=freehdl -pkgver=0.0.8 -pkgrel=5 -pkgdesc='An open-source (C++ generating) VHDL simulator' -arch=('i686' 'x86_64') -url='http://freehdl.seul.org' -license=('GPL') -depends=('perl') -optdepends=('gtkwave: to view output when run standalone') -options=('libtool') -install=${pkgname}.install -source=("http://downloads.sourceforge.net/qucs/$pkgname-$pkgver.tar.gz") -md5sums=('aa1382b8b5c6a972e9652c648a9278b5') - -build() { - cd "${srcdir}"/$pkgname-$pkgver - sed -i 's|my $cpplibs = .*|my $cpplibs = "-lm -lfreehdl-kernel -lfreehdl-std";|g' v2cc/gvhdl-local v2cc/gvhdl.in - ./configure --prefix=/usr - make -} - -package() { - cd "${srcdir}"/$pkgname-$pkgver - make DESTDIR="${pkgdir}" install -} diff --git a/community/freehdl/freehdl.install b/community/freehdl/freehdl.install deleted file mode 100644 index 15e22d4b5..000000000 --- a/community/freehdl/freehdl.install +++ /dev/null @@ -1,20 +0,0 @@ -infodir=usr/share/info -filelist=(fire.info) - -post_install() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info $infodir/$file.gz $infodir/dir 2> /dev/null - done -} - -post_upgrade() { - post_install -} - -pre_remove() { - [ -x usr/bin/install-info ] || return 0 - for file in ${filelist[@]}; do - install-info --delete $infodir/$file.gz $infodir/dir 2> /dev/null - done -} |