updated on Thu Jan 12 04:00:44 UTC 2012
[aur-mirror.git] / genutils-git / PKGBUILD
blobc3c4e1a26aee8b9172a69b3e4346ccce3743267a
1 # Contributor: Guten <ywzhaifei@gmail.com>
3 pkgname="genutils-git"
4 pkgver=20110712  # svn auto added
5 pkgrel=1
6 pkgdesc="my utils in Linux"
7 arch=("i686" "x86_64")
8 url="https://github.com/GutenYe/gutenutils"
9 license=("MIT-LICENSE")
10 groups=()
11 depends=()
12 makedepends=()
13 optdepends=()
14 provides=()
15 conflicts=()
16 replaces=()
17 backup=()
18 options=()
19 install=
20 changelog=
21 source=()
22 md5sums=() # generate with 'makepkg -g'
25 # /             $pkg     
26 # APP/          $startdir
27 #         PKGBUILD    
28 #         src/        $srcdir   # created by makepkg
29 #         pkg/        $pkgdir   # created by makepkg
31 _gitroot="git://github.com/GutenYe/gutenutils.git"
32 _gitname="gutenutils"
34 build() {
35   cd ${srcdir}
36   msg "Connecting to GIT server...."
38   if [ -d ${_gitname}/.git ] ; then
39     cd ${_gitname}
41     # Change remote url to anongit
42     if [ -z $( git branch -v | grep anongit ) ] ; then
43         git remote set-url origin ${_gitroot}
44     fi
45     
46     git pull origin
47     msg "The local files are updated."
48   else
49     git clone ${_gitroot} ${_gitname}
50   fi
51   msg "GIT checkout done or server timeout"
53   # msg "Starting make..."
54         # make
57 package() {
58   cd ${srcdir}/${_gitname}
60   #
61   # install
62   #
63   mkdir -p $pkgdir/usr/bin
64   cp -r bin/* $pkgdir/usr/bin