mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
20 lines
572 B
Bash
20 lines
572 B
Bash
# $Id: PKGBUILD 27813 2009-02-26 06:48:41Z eric $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Damir Perisa <damir.perisa@bluewin.ch>
|
|
|
|
pkgname=lcab
|
|
pkgver=1.0b12
|
|
pkgrel=1
|
|
pkgdesc="A program to make Microsoft cabinet files (.cab) (aka cablinux)"
|
|
arch=("i686" "x86_64")
|
|
license=('GPL')
|
|
url="http://lcab.move-to-cork.com/"
|
|
depends=("glibc")
|
|
source=(http://lcab.move-to-cork.com/sources/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make || return 1
|
|
install -D -m755 lcab $pkgdir/usr/bin/lcab
|
|
}
|
|
md5sums=('9403e08f53fcf262e25641a9b900d4de')
|