mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:47:21 +08:00
27 lines
698 B
Bash
27 lines
698 B
Bash
#
|
|
# Platform 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>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=hd2u
|
|
pkgver=1.0.3
|
|
pkgrel=1
|
|
pkgdesc="Dos2Unix text file converter"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL2')
|
|
url="http://hany.sk/~hany/software/hd2u/"
|
|
depends=('popt')
|
|
source=(http://hany.sk/~hany/_data/hd2u/$pkgname-$pkgver.tgz)
|
|
md5sums=('8f6668fafb279aa19f956ec0515717b6')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make prefix=$pkgdir/usr install
|
|
}
|