mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
12 lines
281 B
Makefile
12 lines
281 B
Makefile
aur-schema-sqlite.sql: aur-schema.sql
|
|
sed \
|
|
-e 's/ ENGINE = InnoDB//' \
|
|
-e 's/ [A-Z]* UNSIGNED NOT NULL AUTO_INCREMENT/ INTEGER NOT NULL/' \
|
|
-e 's/([0-9, ]*) UNSIGNED / UNSIGNED /' \
|
|
-e 's/ MySQL / SQLite /' \
|
|
$< >$@
|
|
|
|
clean:
|
|
rm -rf aur-schema-sqlite.sql
|
|
|
|
.PHONY: clean
|