mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:38:28 +08:00
34 lines
886 B
Bash
34 lines
886 B
Bash
#
|
|
# Chakra 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>
|
|
# contributor iruel
|
|
|
|
pkgname=tomoyo-tools
|
|
_basever=2.5.0
|
|
_timestamp=20111025
|
|
_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=('i686' '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=('99999779698ea5f44c74d49e8c640ec1')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make -j1
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}"
|
|
make INSTALLDIR="${pkgdir}" install
|
|
}
|