summaryrefslogtreecommitdiffstats
path: root/src/oh-buildopk
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-01-21 12:15:05 (EST)
committer P. J. McDermott <pjm@nac.net>2012-01-21 12:15:05 (EST)
commitf5094a6b99ab893c97a69cb7e9e6a9d9dc0728b5 (patch)
treefa3e3f61fb4b32aa85061a7e1ffeae3de88d0c33 /src/oh-buildopk
parentd13e7b92e1dbfe412f0ef42e6e915a4feacdf174 (diff)
Use control fields library.
Diffstat (limited to 'src/oh-buildopk')
-rw-r--r--src/oh-buildopk4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/oh-buildopk b/src/oh-buildopk
index bcea2c0..03ae59d 100644
--- a/src/oh-buildopk
+++ b/src/oh-buildopk
@@ -19,6 +19,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+. @@LIBDIR@@/opkhelper/controlfields
+
print_usage()
{
printf 'Usage: %s pkgname...\n' "$1"
@@ -43,7 +45,7 @@ while [ ${#} -gt 0 ]; do
tar -czf ../control.tar.gz .
cd ..
# Pack opk file.
- tar -czf ../../${1}_pkgver-pkgrev_arch.opk \
+ tar -czf ../../${1}_$(oh_get_field ${1} Version)_arch.opk \
debian-binary data.tar.gz control.tar.gz
rm -Rf debian-binary control data.tar.gz control.tar.gz
shift