Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
0be9325e
Commit
0be9325e
authored
Jul 16, 2015
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pkg: unify usage between core and plugins
parent
41fbe742
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
14 deletions
+23
-14
Makefile
Makefile
+6
-0
+MANIFEST
pkg/+MANIFEST
+0
-11
Makefile
pkg/Makefile
+17
-3
No files found.
Makefile
View file @
0be9325e
...
...
@@ -13,6 +13,12 @@ mount: force
umount
:
force
/sbin/umount
-f
"<above>:
${
.CURDIR
}
/src"
scripts
:
force
@
make
-C
${
.CURDIR
}
/pkg scripts
manifest
:
force
@
make
-C
${
.CURDIR
}
/pkg manifest
install
:
force
@
make
-C
${
.CURDIR
}
/pkg
install
@
make
-C
${
.CURDIR
}
/lang
install
...
...
pkg/+MANIFEST
deleted
100644 → 0
View file @
41fbe742
name: opnsense%%REPO_SUFFIX%%
version: "%%REPO_VERSION%%"
origin: opnsense/opnsense%%REPO_SUFFIX%%
comment: "%%REPO_COMMENT%%"
desc: "OPNsense core package"
maintainer: franco@opnsense.org
www: https://opnsense.org/
prefix: /
deps: {
%%REPO_DEPENDS%%
}
pkg/Makefile
View file @
0be9325e
all
:
install
:
scripts
:
@
mkdir
-p
${
DESTDIR
}
@
cp
-v
${
.CURDIR
}
/+PRE_DEINSTALL
${
DESTDIR
}
@
cp
-v
${
.CURDIR
}
/+POST_INSTALL
${
DESTDIR
}
@
cp
-v
${
.CURDIR
}
/+MANIFEST
${
DESTDIR
}
manifest
:
@
echo
"name: opnsense-devel"
@
echo
"version:
\"
%%REPO_VERSION%%
\"
"
@
echo
"origin: opnsense/opnsense-devel"
@
echo
"comment:
\"
OPNsense core development package
\"
"
@
echo
"desc: XXX"
@
echo
"maintainer: franco@opnsense.org"
@
echo
"www: https://opnsense.org/"
@
echo
"prefix: /"
@
echo
"deps: {"
@
echo
"%%REPO_DEPENDS%%"
@
echo
"}"
install
:
@
mkdir
-p
${
DESTDIR
}
/usr/local/etc/pkg
@
cp
-vr
${
.CURDIR
}
/repos
${
DESTDIR
}
/usr/local/etc/pkg/
@
cp
-vr
${
.CURDIR
}
/fingerprints
${
DESTDIR
}
/usr/local/etc/pkg/
...
...
@@ -15,4 +29,4 @@ plist:
@
(
cd
${
.CURDIR
}
/fingerprints
;
find
*
-type
f
)
|
\
xargs
-n1
printf
"/usr/local/etc/pkg/fingerprints/%s
\n
"
.PHONY
:
install plist
.PHONY
:
install plist
scripts manifest
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment