0
0
mirror of https://github.com/openwrt/packages.git synced 2025-02-07 03:29:52 +00:00
Oskari Rauta df847e1c03 parted: update Makefile
- updated Makefile fields license (GPL3) and COPYING as license file
 - fix config directive
 - split package to shared library and application (another package, fatresize has dependency to libparted)

Signed-off-by: Oskari Rauta <oskari.rauta@gmail.com>
2021-11-18 14:14:07 -08:00

8 lines
112 B
Bash

#!/bin/sh
case "$1" in
"parted")
test $(/sbin/parted --version | grep '^Copyright' | wc -l) -gt 0
;;
esac