mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 02:27:16 +08:00
31 lines
705 B
Bash
31 lines
705 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
|
|
pkgname=tomoyo-tools
|
|
_basever=2.5.0
|
|
_timestamp=20130406
|
|
_file=53357
|
|
pkgver=${_basever}.${_timestamp}
|
|
pkgrel=3
|
|
pkgdesc='TOMOYO Linux userspace tools for Linux kernels >=3.2'
|
|
arch=('x86_64')
|
|
url='http://tomoyo.sourceforge.jp'
|
|
license=('GPL')
|
|
depends=('ncurses' 'linux>=3.2')
|
|
makedepends=('help2man')
|
|
conflicts=('ccs-tools')
|
|
install=tomoyo-tools.install
|
|
source=("http://sourceforge.jp/frs/redir.php?f=/tomoyo/${_file}/${pkgname}-${_basever}-${_timestamp}.tar.gz")
|
|
md5sums=('8888f83fcb87823d714ff551e8680d0d')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make INSTALLDIR="${pkgdir}" install
|
|
}
|