mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 10:32:15 +08:00
34 lines
719 B
Bash
34 lines
719 B
Bash
# $Id: PKGBUILD 77816 2010-04-18 08:52:19Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: judd <jvinet@zeroflux.org>
|
|
|
|
pkgname=sed
|
|
pkgver=4.2.1
|
|
pkgrel=4
|
|
pkgdesc="GNU stream editor"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.gnu.org/software/sed"
|
|
license=('GPL3')
|
|
groups=('base')
|
|
depends=('acl' 'sh')
|
|
makedepends=('gettext')
|
|
install=sed.install
|
|
source=("ftp://ftp.gnu.org/pub/gnu/sed/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('f0fd4d7da574d4707e442285fd2d3b86')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--without-included-regex
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|