diff options
author | sat <sat@FreeBSD.org> | 2006-07-21 21:11:05 +0000 |
---|---|---|
committer | sat <sat@FreeBSD.org> | 2006-07-21 21:11:05 +0000 |
commit | 51011752daa2f8c52ceb02d8dde2b5eef3e18b0e (patch) | |
tree | b9071bbc336802f091847710b4773f938602c310 /audio/kexis | |
parent | 6c0e6fa4355530a3c163d2d604339c7fb29b71ea (diff) | |
download | FreeBSD-ports-51011752daa2f8c52ceb02d8dde2b5eef3e18b0e.zip FreeBSD-ports-51011752daa2f8c52ceb02d8dde2b5eef3e18b0e.tar.gz |
Add port audio/kexis:
Kexis - A lossless WAV file compressor. Kexis' main goal is to develop
prediction and encoding schemes to minimize compressed file size. Kexis
strives to be the premier lossless sound encoder.
WWW: http://sourceforge.net/projects/kexis/
Diffstat (limited to 'audio/kexis')
-rw-r--r-- | audio/kexis/Makefile | 24 | ||||
-rw-r--r-- | audio/kexis/distinfo | 3 | ||||
-rw-r--r-- | audio/kexis/files/patch-Makefile | 10 | ||||
-rw-r--r-- | audio/kexis/pkg-descr | 5 |
4 files changed, 42 insertions, 0 deletions
diff --git a/audio/kexis/Makefile b/audio/kexis/Makefile new file mode 100644 index 0000000..f7c2ab7 --- /dev/null +++ b/audio/kexis/Makefile @@ -0,0 +1,24 @@ +# New ports collection makefile for: kexis +# Date created: 22 July 2006 +# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= kexis +PORTVERSION= 0.2.2 +CATEGORIES= audio +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +EXTRACT_SUFX= .tgz + +MAINTAINER= infofarmer@FreeBSD.org +COMMENT= Lossless WAV file compressor + +WRKSRC= ${WRKDIR}/${PORTNAME} +PLIST_FILES= bin/kexis + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/kexis ${PREFIX}/bin/ + +.include <bsd.port.mk> diff --git a/audio/kexis/distinfo b/audio/kexis/distinfo new file mode 100644 index 0000000..e1b24d5 --- /dev/null +++ b/audio/kexis/distinfo @@ -0,0 +1,3 @@ +MD5 (kexis-0.2.2.tgz) = 87cd9bb0ef53bc0f7ed44d148011785a +SHA256 (kexis-0.2.2.tgz) = 059d77fc009fae9c2f3ece906f0f4c8de792a5071d7b7c958e2b434c7d54b353 +SIZE (kexis-0.2.2.tgz) = 39350 diff --git a/audio/kexis/files/patch-Makefile b/audio/kexis/files/patch-Makefile new file mode 100644 index 0000000..51df7bc --- /dev/null +++ b/audio/kexis/files/patch-Makefile @@ -0,0 +1,10 @@ +--- ./Makefile.orig Sat Jul 22 00:55:52 2006 ++++ ./Makefile Sat Jul 22 00:56:34 2006 +@@ -1,7 +1,5 @@ +-DESTDIR = + SOURCE=encode.c decode.c header.c predictor.c bits.c rice.c kexis.c + OBJ = $(SOURCE:.c=.o) +-CC=gcc + + #PROFILE_OPTS = -g3 -pg -a + diff --git a/audio/kexis/pkg-descr b/audio/kexis/pkg-descr new file mode 100644 index 0000000..b820a22 --- /dev/null +++ b/audio/kexis/pkg-descr @@ -0,0 +1,5 @@ +Kexis - A lossless WAV file compressor. Kexis' main goal is to develop +prediction and encoding schemes to minimize compressed file size. Kexis +strives to be the premier lossless sound encoder. + +WWW: http://sourceforge.net/projects/kexis/ |