208a26d2d5
1.0.18: Remove the MacOS "quarantine" files that I didn't know I'd shipped. Remove some trailing spaces. Bump up the patchlevel in inc/gsm.h (I'd forgotten that in release 17.) 1.0.17: New email addresses in the README. Avoid left-shifting signed integers. Don't print longwords using %d or %ld, cast them to (long) first. Don't compare longwords as longs in addtest, we only care for the lower 32 bits. (The math works, but the test failed.) 1.0.16: New email addresses in the manual pages (patch 16) Removed a stray .orig file (in patch 15)
25 lines
779 B
Makefile
25 lines
779 B
Makefile
# $NetBSD: Makefile,v 1.36 2019/06/15 08:41:30 adam Exp $
|
|
|
|
DISTNAME= gsm-1.0.18
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.quut.com/gsm/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.quut.com/gsm/
|
|
COMMENT= Audio converter and library for converting u-law to gsm encoding
|
|
LICENSE= mit
|
|
|
|
WRKSRC= ${WRKDIR}/gsm-1.0-pl18
|
|
USE_LIBTOOL= yes
|
|
NO_CONFIGURE= yes
|
|
MAKE_ENV+= ROOT=${WRKSRC}
|
|
INSTALL_ENV+= INSTALL_ROOT=${DESTDIR}${PREFIX}
|
|
|
|
INSTALLATION_DIRS= bin include/gsm lib ${PKGMANDIR}/man1 ${PKGMANDIR}/man3
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/inc/private.h ${DESTDIR}${PREFIX}/include/gsm
|
|
${INSTALL_DATA} ${WRKSRC}/inc/proto.h ${DESTDIR}${PREFIX}/include/gsm
|
|
${INSTALL_DATA} ${WRKSRC}/inc/unproto.h ${DESTDIR}${PREFIX}/include/gsm
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|