- Add minimal CD support (mount(2) / umount(2)) - Add more mount(2) options (ext2fs, msdos and ntfs support) - Small bugfixes - Fix build on !amd64 arches
27 lines
594 B
Makefile
27 lines
594 B
Makefile
# $OpenBSD: Makefile,v 1.4 2021/06/04 05:55:16 rsadowski Exp $
|
|
|
|
COMMENT = UDisks2 service implementation for OpenBSD
|
|
|
|
V = 0.3.0
|
|
DISTNAME = openbsdisks2-${V}beta
|
|
|
|
CATEGORIES = sysutils
|
|
|
|
HOMEPAGE = https://github.com/sizeofvoid/openbsdisks2
|
|
|
|
MAINTAINER = Rafael Sadowski <rsadowski@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += ${COMPILER_LIBCXX} Qt5Core Qt5DBus c m util
|
|
|
|
MASTER_SITES = https://github.com/sizeofvoid/openbsdisks2/releases/download/v${V}b/
|
|
|
|
MODULES = devel/cmake \
|
|
x11/qt5
|
|
# /usr/local/share/dbus-1/system-services
|
|
RUN_DEPENDS += x11/dbus,-suid
|
|
|
|
.include <bsd.port.mk>
|