mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
7cf7b646b2
bsd.port.mk macro. Submitted by: Oliver Eikemeier <eikemeier@fillmore-labs.com>
36 lines
829 B
Makefile
36 lines
829 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: libsndfile
|
|
# Date created: Jul 20, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libsndfile
|
|
PORTVERSION= 1.0.5
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.zip.com.au/~erikd/libsndfile/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Reading and writing files containing sampled sound (like WAV or AIFF)
|
|
|
|
USE_GNOME= gnomehack gnometarget pkgconfig
|
|
USE_LIBTOOL= yes
|
|
CONFIGURE_ARGS= --enable-justsrc --disable-gcc-pipe
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= sndfile-convert.1 sndfile-info.1 sndfile-play.1
|
|
|
|
MYPORTDOCS= ChangeLog NEWS api.html bugs.html index.html libsndfile.jpg \
|
|
new_file_type.HOWTO sndfile_info.html
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${MYPORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|