mirror of
https://github.com/openwrt/packages.git
synced 2025-12-26 11:16:31 +04:00
Replace boilerplate license header with a SPDX license identifier.
Set correct package license to blessing.
Fixes: 9236e4f ("sqlite3: import 3.7.12.1 (2012-05-22) from packages")
Link: https://spdx.org/licenses/blessing.html
Signed-off-by: George Sapkin <george@sapk.in>
8 lines
133 B
Bash
Executable File
8 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
if [ "$1" = 'sqlite3-cli' ]; then
|
|
sqlite3 -version | grep -F "$PKG_VERSION"
|
|
fi
|