diff options
Diffstat (limited to 'src/oh-buildopk')
-rw-r--r-- | src/oh-buildopk | 4 |
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 |