freebsd-ports/sysutils/wimlib/Makefile
Tobias Kortkamp 9f45c94788 New port: sysutils/wimlib
Allows to read and write Windows Imaging (WIM) files and deployment
of Windows operating systems.

General capabilities:

- Apply (extract) a WIM image (wimapply)
- Capture (create) a WIM image (wimcapture)
- Append, delete, and export WIM images (wimappend, wimdelete, wimexport)
- Modify a WIM image (wimupdate)
- Extract files or directories from a WIM image (wimextract)
- Optimize a WIM archive, removing wasted space
  and optionally recompressing (wimoptimize)
- Split or join a WIM archive (wimsplit, wimjoin)
- Mount a WIM image (wimmount, wimmountrw)

Sample of usage:

http://www.ultimatedeployment.org/win7pxelinux3.html

WWW: https://wimlib.net/

PR:		219163
Submitted by:	mail_of_sergey@mail.ru
2018-06-09 19:27:31 +00:00

29 lines
607 B
Makefile

# $FreeBSD$
PORTNAME= wimlib
PORTVERSION= 1.12.0
CATEGORIES= sysutils
MASTER_SITES= https://wimlib.net/downloads/
MAINTAINER= mail_of_sergey@mail.ru
COMMENT= Manipulate Windows Imaging (WIM) archives
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING.GPLv3
USES= gmake gnome fuse libtool pkgconfig
USE_GNOME= libxml2
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-static
OPTIONS_DEFINE= NTFS
OPTIONS_DEFAULT= NTFS
NTFS_DESC= Build with libntfs-3g for NTFS support (recommended)
NTFS_CONFIGURE_WITH= ntfs-3g
NTFS_LIB_DEPENDS= libntfs-3g.so:sysutils/fusefs-ntfs
.include <bsd.port.mk>