desktop/ccr/PKGBUILD

36 lines
1.3 KiB
Bash
Raw Normal View History

2010-09-21 11:48:48 +08:00
#
# Apps Packages for Chakra, part of chakra-project.org
#
# maintainer (i686): Phil Miller <philm[at]chakra-project[dog]org>
# maintainer (x86_64): Manuel Tortosa <manutortosa[at]chakra-project[dot]org>
2012-02-05 23:58:37 +08:00
2010-09-21 11:48:48 +08:00
pkgname=ccr
2012-02-05 23:58:37 +08:00
pkgver=4.0.1
2013-03-14 02:48:58 +08:00
pkgrel=7
2012-02-05 23:58:37 +08:00
pkgdesc="A Bash wrapper for the CCR"
2010-09-21 11:48:48 +08:00
license="GPL"
arch=('any')
2012-02-05 23:58:37 +08:00
depends=('grep' 'sed' 'coreutils' 'bash' 'curl' 'pacman' 'autoconf' 'automake' 'bin86' 'bison' 'ed' 'fakeroot' 'flex' 'gcc' 'libtool' 'm4' 'make' 'patch' 'pkgconfig' 'jshon')
optdepends=('sudo: install and update packages as non-root')
2012-05-01 00:27:31 +08:00
conflicts=('ccr-tools-git' 'ccr-tools')
2011-10-24 03:40:47 +08:00
#source=("http://chakra-project.org/sources/ccr/ccr-$pkgver.tar.xz"
categories=('system')
2012-05-01 00:27:31 +08:00
source=("https://raw.github.com/ccr-tools/ccr-tools/master/ccr"
"https://raw.github.com/ccr-tools/ccr-tools/master/ccr.8"
2012-04-30 23:53:04 +08:00
"https://raw.github.com/ccr-tools/ccr-tools/master/ccr-tools"
"https://raw.github.com/ccr-tools/ccr-tools/master/ccr-tools.8")
2013-03-14 02:48:58 +08:00
md5sums=('ae021b4c08f06bf46fce333075fb774f'
2012-05-01 00:27:31 +08:00
'502021ae4ca2fd2b7a8f6fb0062e4710'
2013-03-14 02:48:58 +08:00
'953d2c76c2dc39b44d9d5647b5e7fe6b'
2012-04-30 23:53:04 +08:00
'9ab61b206beb5718af841dc1ff2454e8')
2010-09-21 11:48:48 +08:00
2012-04-05 02:12:03 +08:00
package() {
2012-05-01 00:27:31 +08:00
cd "$srcdir"
2012-04-30 23:53:04 +08:00
install -m 755 -D ccr "$pkgdir/usr/bin/ccr"
2012-05-01 00:27:31 +08:00
install -m 644 -D ccr.8 "$pkgdir/usr/share/man/man8/ccr.8"
2012-04-30 23:53:04 +08:00
2012-05-01 00:27:31 +08:00
install -m 775 -D ccr-tools "$pkgdir/usr/bin/ccr-tools"
2012-04-30 23:53:04 +08:00
install -m 644 -D ccr-tools.8 "$pkgdir/usr/share/man/man8/ccr-tools.8"
2010-09-21 11:48:48 +08:00
}