2012-08-15 20:48:57 +02:00
|
|
|
# Copyright 2012 Denis Knauf
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
require debian-upstream [ suffix=.orig.tar.gz ]
|
|
|
|
|
|
|
|
SUMMARY="Portable Archive Interchange"
|
|
|
|
|
2012-08-15 21:25:45 +02:00
|
|
|
LICENCES="as-is"
|
2012-08-15 20:48:57 +02:00
|
|
|
SLOT="0"
|
2012-08-15 21:25:45 +02:00
|
|
|
PLATFORMS="~amd64"
|
2012-08-15 20:48:57 +02:00
|
|
|
|
|
|
|
DEPENDENCIES=""
|
|
|
|
|
|
|
|
src_compile() {
|
2012-08-15 21:10:14 +02:00
|
|
|
edo gcc ${CFLAGS} ${LDFLAGS} -o pax *.c
|
2012-08-15 20:48:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2012-08-15 21:10:14 +02:00
|
|
|
dobin pax
|
|
|
|
doman pax.1
|
2012-08-15 21:25:45 +02:00
|
|
|
emagicdocs
|
2012-08-15 20:48:57 +02:00
|
|
|
}
|