mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
39 lines
733 B
Bash
39 lines
733 B
Bash
#
|
|
# Core Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer: abveritas@chakra-project.org
|
|
# rebuild libtool on any update
|
|
|
|
pkgname=sed
|
|
pkgver=4.2.2
|
|
pkgrel=1
|
|
pkgdesc="GNU stream editor"
|
|
arch=('x86_64')
|
|
url="http://www.gnu.org/software/sed"
|
|
license=('GPL3')
|
|
groups=('base')
|
|
depends=('glibc' 'acl' 'attr')
|
|
makedepends=('gettext')
|
|
install=sed.install
|
|
source=("ftp://ftp.gnu.org/pub/gnu/sed/$pkgname-$pkgver.tar.gz"{,.sig})
|
|
md5sums=('4111de4faa3b9848a0686b2f260c5056'
|
|
'86a5ab72f414d4cb38126e8e27cf0101')
|
|
|
|
build() {
|
|
cd $pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd $pkgname-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $pkgname-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|