summaryrefslogtreecommitdiff
path: root/APKBUILD-svn.proto
diff options
context:
space:
mode:
authorDubiousjim <dubiousjim@gmail.com>2013-07-05 00:21:10 -0400
committerNatanael Copa <ncopa@alpinelinux.org>2013-07-08 14:47:11 +0000
commit607124c60c1e5b65dbe78d65269a75cc980e421c (patch)
tree05f87ae0558bd1b94ff8537cdfdebf369778265f /APKBUILD-svn.proto
parent9e94ea184410e57649bad2f1f5ab1d5787ef9657 (diff)
downloadabuild-607124c60c1e5b65dbe78d65269a75cc980e421c.tar.gz
abuild-607124c60c1e5b65dbe78d65269a75cc980e421c.tar.bz2
abuild-607124c60c1e5b65dbe78d65269a75cc980e421c.tar.xz
abuild-607124c60c1e5b65dbe78d65269a75cc980e421c.zip
remove unused files
as discussed in http://lists.alpinelinux.org/alpine-devel/3122.html
Diffstat (limited to 'APKBUILD-svn.proto')
-rw-r--r--APKBUILD-svn.proto46
1 files changed, 0 insertions, 46 deletions
diff --git a/APKBUILD-svn.proto b/APKBUILD-svn.proto
deleted file mode 100644
index 63fbbb1..0000000
--- a/APKBUILD-svn.proto
+++ /dev/null
@@ -1,46 +0,0 @@
-# This is an example PKGBUILD file. Use this as a start to creating your own,
-# and remove these comments.
-# NOTE: Please fill out the license field for your package! If it is unknown,
-# then please put 'unknown'.
-
-# Contributor: Your Name <youremail@domain.com>
-pkgname=NAME-svn
-pkgver=VERSION
-pkgrel=0
-pkgdesc=""
-url=""
-license="GPL"
-depends=""
-makedepends=""
-install=
-source="$pkgname-$pkgver.tar.gz"
-
-_svntrunk=SVNURL
-_svnmod=MODENAME
-
-build() {
- cd "$srcdir"
-
- if [ -d $_svnmod/.svn ]; then
- (cd $_svnmod && svn up -r $pkgver) || return 1
- else
- svn co $_svntrunk --config-dir ./ -r $pkgver $_svnmod \
- || return 1
- fi
-
- msg "Starting make..."
-
- rm -r "$srcdir/$_svnmod-build"
- cp -r "$srcdir/$_svnmod" "$srcdir/$_svnmod-build"
- cd "$srcdir/$_svnmod-build"
-
- #
- # BUILD
- #
- ./autogen.sh
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR="$pkgdir/" install
-}
-
-md5sums="" # generate with 'abuild checksum'