Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit a1d26d2c32
3 changed files with 43 additions and 0 deletions

15
.SRCINFO Normal file
View file

@ -0,0 +1,15 @@
pkgbase = md5
pkgdesc = An md5 hash printing utility, that can have files or strings as input
pkgver = 2.3
pkgrel = 1
url = http://www.fourmilab.ch/md5/
arch = i686
arch = x86_64
license = custom
source = http://www.fourmilab.ch/md5/md5.tar.gz
source = COPYING
md5sums = c97245b84d45d6798f5f498f8a9a7c1e
md5sums = 7d811169878aefba828302d9a48f84de
pkgname = md5

2
COPYING Normal file
View file

@ -0,0 +1,2 @@
(http://www.fourmilab.ch/md5/)
This software is in the public domain. Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, without any conditions or restrictions. This software is provided "as is" without express or implied warranty.

26
PKGBUILD Normal file
View file

@ -0,0 +1,26 @@
# Maintaier: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=md5
pkgver=2.3
pkgrel=1
pkgdesc="An md5 hash printing utility, that can have files or strings as input"
arch=('i686' 'x86_64')
url="http://www.fourmilab.ch/md5/"
license=('custom')
source=(http://www.fourmilab.ch/md5/$pkgname.tar.gz
COPYING)
md5sums=('c97245b84d45d6798f5f498f8a9a7c1e'
'7d811169878aefba828302d9a48f84de')
build() {
cd "${srcdir}"
make
}
package() {
cd "${srcdir}"
install -Dm755 "$pkgname" "${pkgdir}/usr/bin/$pkgname"
install -Dm644 "COPYING" "${pkgdir}/usr/share/licenses/$pkgname/COPYING"
}