mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 06:37:15 +08:00
32 lines
757 B
Bash
32 lines
757 B
Bash
#
|
|
# Chakra Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: abveritas@chakra-project.org
|
|
|
|
pkgname=tomoyo-tools
|
|
_basever=2.5.0
|
|
_timestamp=20130214
|
|
_file=53357
|
|
pkgver=${_basever}.${_timestamp}
|
|
pkgrel=1
|
|
pkgdesc='TOMOYO Linux 2.5.x userspace tools for Linux kernel 2.6.35 LTS and 3.1'
|
|
arch=('x86_64')
|
|
url='http://tomoyo.sourceforge.jp'
|
|
license=('GPL')
|
|
depends=('ncurses')
|
|
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=('ffff6b531ed9ac32b01722a9cd749a2f')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make -j1
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make INSTALLDIR="${pkgdir}" install
|
|
}
|