mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
- Rework the wrapper support to check libpkg version as well as pkg_install version. - Add libfetch to _prebuild_libs. - There are no new features introduced. Notes: the API is not stable, so basically, do not use libpkg in your projects for now. Also there's no manpage for libpkg yet, because the API will change drastically. I repeat, do not use libpkg for now.
12 lines
134 B
Makefile
12 lines
134 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= pkg_create
|
|
SRCS= main.c perform.c pl.c
|
|
|
|
WARNS?= 3
|
|
WFORMAT?= 1
|
|
|
|
DPADD= ${LIBMD}
|
|
LDADD= -lmd
|
|
|
|
.include <bsd.prog.mk>
|