diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-12-16 11:51:24 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-12-16 11:51:24 +0100 |
commit | c6000c9d9949b3326fb82f02431899ab6774b960 (patch) | |
tree | 2453cd564b0f382f3d8ccd893df8ebe2e9aeda71 /blazeblogger-git/PKGBUILD | |
parent | 453f0f12918af35bd8e1e5f049841360f37d62e4 (diff) | |
download | aur-packages-c6000c9d9949b3326fb82f02431899ab6774b960.tar.gz aur-packages-c6000c9d9949b3326fb82f02431899ab6774b960.tar.xz |
big cleanup
Diffstat (limited to 'blazeblogger-git/PKGBUILD')
-rw-r--r-- | blazeblogger-git/PKGBUILD | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/blazeblogger-git/PKGBUILD b/blazeblogger-git/PKGBUILD deleted file mode 100644 index 26b4ff7..0000000 --- a/blazeblogger-git/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# Maintainer: Florian Pritz <bluewind@xssn.at> -# Contributor: Abakus <java5@arcor.de> -pkgname=blazeblogger-git -pkgver=20100822 -pkgrel=1 -pkgdesc="is a simple-to-use but capable CMS for the command line" -arch=('any') -url="http://blaze.blackened.cz" -license=('GPL') -depends=('perl') -makedepends=('git') -conflicts=('blazeblogger') -source=() -md5sums=() - -_gitroot="git://gitorious.org/blazeblogger/mainline.git" -_gitname="mainline" - -build() { - cd "$srcdir" - msg "Connecting to GIT server...." - - if [ -d "${_gitname}" ] ; then - cd "${_gitname}" && git pull origin - msg "The local files are updated." - else - git clone $_gitroot - fi - - msg "GIT checkout done or server timeout" - msg "Starting make..." - - rm -rf "$srcdir/$_gitname-build" - git clone "$srcdir/mainline" "$srcdir/$_gitname-build" - cd "$srcdir/$_gitname-build" - - sed -i 's|/usr/bin/pod2man|pod2man|' Makefile - sed -i 's|/usr/bin/install|/bin/install|' Makefile - make prefix=$pkgdir/usr install - -} |