summaryrefslogtreecommitdiffstats
path: root/abs/extra/community/fuzemux-svn/PKGBUILD
diff options
context:
space:
mode:
authorCecil <knoppmyth@gmail.com>2011-08-18 19:30:54 (GMT)
committerCecil <knoppmyth@gmail.com>2011-08-18 19:30:54 (GMT)
commitf738fb2a8615c5a5381ec37fe4fe85059f838bd5 (patch)
treedf05558e38722711df52a4adb6f4ec41aff693e7 /abs/extra/community/fuzemux-svn/PKGBUILD
parent6e110f1d640deeb5a0ce0a0594f7ac16b4afa1e2 (diff)
parent152eb1fd6addff02e84602e7e95b9eb8a1dec735 (diff)
downloadlinhes_pkgbuild-f738fb2a8615c5a5381ec37fe4fe85059f838bd5.zip
linhes_pkgbuild-f738fb2a8615c5a5381ec37fe4fe85059f838bd5.tar.gz
linhes_pkgbuild-f738fb2a8615c5a5381ec37fe4fe85059f838bd5.tar.bz2
Merge branch 'testing' of ssh://cesman@linhes.org/mount/repository/linhes_pkgbuild into testing
Diffstat (limited to 'abs/extra/community/fuzemux-svn/PKGBUILD')
-rw-r--r--abs/extra/community/fuzemux-svn/PKGBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/abs/extra/community/fuzemux-svn/PKGBUILD b/abs/extra/community/fuzemux-svn/PKGBUILD
deleted file mode 100644
index 1acc914..0000000
--- a/abs/extra/community/fuzemux-svn/PKGBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# Contributor: Michael Hanson <hansonorders@verizon.net>
-# Maintainer: Michael Hanson <hansonorders@verizon.net>
-pkgname=fuzemux-svn
-pkgver=11
-pkgrel=2
-pkgdesc="A tool to remux AVI video files for the San Disk Sansa Fuze portable media player"
-arch=('i686' 'x86_64')
-url="http://code.google.com/p/fuzemux"
-license=('GPL3')
-#depends=()
-makedepends=('subversion' 'autoconf')
-provides=('fuzemux')
-install=('fuzemux-svn.install')
-
-_svntrunk=http://fuzemux.googlecode.com/svn/trunk/
-_svnmod=fuzemux
-
-build() {
- cd "$srcdir"
-
- if [ -d $_svnmod/.svn ]; then
- (cd $_svnmod && svn up -r $pkgver)
- else
- svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod
- fi
-
- msg "SVN checkout done or server timeout"
- msg "Starting make..."
-
- rm -rf "$srcdir/$_svnmod-build"
- cp -r "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
- cd "$srcdir/$_svnmod-build"
-
- #
- # BUILD
- #
- /usr/bin/autoreconf --install
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR="$pkgdir/" install
-}