9637f7852e
pkglint -r --network --only "migrate" As a side-effect of migrating the homepages, pkglint also fixed a few indentations in unrelated lines. These and the new homepages have been checked manually.
26 lines
788 B
Makefile
26 lines
788 B
Makefile
# $NetBSD: Makefile,v 1.10 2020/01/26 17:30:49 rillig Exp $
|
|
#
|
|
|
|
PKGNAME= asterisk-sounds-de-x9media-20060714
|
|
PKGREVISION= 1
|
|
DISTNAME= asterisk-x9rita-soundfiles-ger-v4
|
|
CATEGORIES= comms
|
|
MASTER_SITES= http://www.x9media.com/downloads/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://www.x9media.com/
|
|
COMMENT= German voice prompt files for asterisk
|
|
|
|
USE_TOOLS+= tar
|
|
|
|
FETCH_BEFORE_ARGS+= -o ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
do-build: # EMPTY
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/libdata/asterisk/sounds
|
|
( cd ${WRKSRC}; tar -cf - de digits ) | ( cd ${DESTDIR}${PREFIX}/libdata/asterisk/sounds; tar -xf - )
|
|
( cd ${WRKSRC}/x9media; tar -cf - . ) | ( cd ${DESTDIR}${PREFIX}/libdata/asterisk/sounds/de; tar -xf - )
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|