libburn is a library by which preformatted data get onto optical media: CD, DVD, BD (Blu-Ray). On OpenBSD it uses /dev/cdNc. libburn also offers a facility for reading data blocks from its drives without using the normal block device i/o, which has its advantages and disadvantages. It seems appropriate, nevertheless, to do writing and reading via the same channel. ok sthen@ uaa@
22 lines
462 B
Makefile
22 lines
462 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2017/12/19 20:18:08 landry Exp $
|
|
|
|
COMMENT = library for reading, mastering and writing optical discs
|
|
|
|
DISTNAME = libburn-1.4.8
|
|
SHARED_LIBS += burn 0.0 # 105.0
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://dev.lovelyhq.com/libburnia/web/wikis/Libburn
|
|
MASTER_SITES = http://files.libburnia-project.org/releases/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB = c pthread
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
USE_LIBTOOL = Yes
|
|
|
|
.include <bsd.port.mk>
|