17 lines
388 B
Makefile
Executable File
17 lines
388 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# Simple dh (debhelper) build rules file
|
|
%:
|
|
dh $@
|
|
|
|
# Prevent dh_strip from running on this package
|
|
override_dh_strip:
|
|
@echo "Skipping dh_strip for Ollama (bundled libs)"
|
|
|
|
override_dh_shlibdeps:
|
|
@echo "Skipping dh_shlibdeps for Ollama (bundled libs)"
|
|
|
|
override_dh_fixperms:
|
|
dh_fixperms
|
|
chmod 755 debian/ollama/usr/bin/ollama
|
|
chmod u+x debian/ollama/usr/bin/ollama
|