desktop/ccr/PKGBUILD

21 lines
804 B
Bash
Raw Permalink Normal View History

2010-09-21 11:48:48 +08:00
pkgname=ccr
2017-12-12 22:30:44 +08:00
pkgver=4.0.6
2016-07-14 13:04:39 +08:00
pkgrel=1
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"
2017-12-12 22:30:44 +08:00
arch=('x86_64')
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')
categories=('system')
2017-12-12 22:30:44 +08:00
source=("https://github.com/ccr-tools/ccr-tools/archive/v$pkgver.tar.gz")
md5sums=('e5ea590fb4234eb90513a3b4e507e811')
2014-11-09 08:26:24 +08:00
2012-04-05 02:12:03 +08:00
package() {
2017-12-12 22:30:44 +08:00
cd ccr-tools-$pkgver
2014-03-21 02:22:40 +08:00
install -m 755 -D ccr "$pkgdir/usr/bin/ccr"
install -m 644 -D ccr.8 "$pkgdir/usr/share/man/man8/ccr.8"
install -m 775 -D ccr-tools "$pkgdir/usr/bin/ccr-tools"
install -m 644 -D ccr-tools.8 "$pkgdir/usr/share/man/man8/ccr-tools.8"
2014-11-09 08:26:24 +08:00
}