mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
25 lines
932 B
Bash
25 lines
932 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
pkgname=ccr
|
|
pkgver=4.0.3
|
|
pkgrel=1
|
|
pkgdesc="A Bash wrapper for the CCR"
|
|
license="GPL"
|
|
arch=('any')
|
|
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')
|
|
conflicts=('ccr-tools-git' 'ccr-tools')
|
|
#source=("http://chakra-project.org/sources/ccr/ccr-$pkgver.tar.xz"
|
|
categories=('system')
|
|
source=("https://github.com/ccr-tools/ccr-tools/archive/v${pkgver}.tar.gz")
|
|
md5sums=('f137e8b4fb3bd807a41f609dd284ff9b')
|
|
|
|
package() {
|
|
cd ccr-tools-${pkgver}
|
|
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"
|
|
}
|