diff options
author | Omar Vega Ramos <ovruni@gnu.org.pe> | 2020-03-14 18:58:57 -0500 |
---|---|---|
committer | Omar Vega Ramos <ovruni@gnu.org.pe> | 2020-03-14 18:58:57 -0500 |
commit | 094647542ace60f7ae09bd5d60216af2e302dce0 (patch) | |
tree | dc71e960f027bfd9fb7f366ad94b4bb7161b7dc4 /pcr/libinstpatch/PKGBUILD | |
parent | ba008dd3e79e5e218c11395d455d7e3da423719c (diff) | |
download | abslibre-094647542ace60f7ae09bd5d60216af2e302dce0.tar.gz abslibre-094647542ace60f7ae09bd5d60216af2e302dce0.tar.bz2 abslibre-094647542ace60f7ae09bd5d60216af2e302dce0.zip |
Removing libinstpatch: This package is in [extra] repo
Diffstat (limited to 'pcr/libinstpatch/PKGBUILD')
-rw-r--r-- | pcr/libinstpatch/PKGBUILD | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/pcr/libinstpatch/PKGBUILD b/pcr/libinstpatch/PKGBUILD deleted file mode 100644 index 380d8ce47..000000000 --- a/pcr/libinstpatch/PKGBUILD +++ /dev/null @@ -1,37 +0,0 @@ -# Maintainer (Arch): speps <speps at aur dot archlinux dot org> - -pkgname=libinstpatch -pkgver=1.0.0 -pkgrel=3 -pkgdesc="A library for processing digital sample based MIDI instrument patch files." -arch=(i686 x86_64) -url="http://sourceforge.net/apps/mediawiki/swami/index.php?title=Main_Page" -license=('GPL') -depends=('libsndfile' 'glib2' 'python2') -makedepends=('intltool') -options=('!libtool') -source=("http://downloads.sourceforge.net/project/swami/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz") -md5sums=('eca9c505fd0c47fd1f59d40598e8eb63') - -build() { - cd "$srcdir/$pkgname-$pkgver" - - # python2 fix - export PYTHON=python2 - - # configure fix - sed -i "s_echo\( \$PYTHON\)_which\1_g" -i configure - - # DSO link fix - LIBS=" -lgobject-2.0 -lglib-2.0" \ - ./configure --prefix=/usr \ - --enable-static=no - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install -} - -# vim:set ts=2 sw=2 et: |